Removes an index from the collection.

Namespace:  C1.LiveLinq.Indexing
Assembly:  C1.LiveLinq (in C1.LiveLinq.dll)

Syntax

C#
public override bool Remove(
	LambdaExpression keySelector
)
Visual Basic
Public Overrides Function Remove ( _
	keySelector As LambdaExpression _
) As Boolean

Parameters

keySelector
Type: System.Linq.Expressions..::..LambdaExpression
Key selector expression of an index, see KeySelector.

Return Value

true if an index has been removed; false if there is no index with the given key selector in the collection.

Implements

IDictionary<(Of <(<'TKey, TValue>)>)>..::..Remove(TKey)

See Also